From 7d385b05698fdb0a4a0f3371610120105c88e00f Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 21 Jun 1993 00:25:57 +0000 Subject: [PATCH] * alloc.c (Fgarbage_collect): If the minibuffer is active, don't display the "...done" message; allow the minibuffer to show again. --- src/alloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/alloc.c b/src/alloc.c index f47287d4b01..22153110480 100644 --- a/src/alloc.c +++ b/src/alloc.c @@ -1358,7 +1358,7 @@ Garbage collection happens automatically if you cons more than\n\ if (gc_cons_threshold < 10000) gc_cons_threshold = 10000; - if (omessage) + if (omessage || minibuf_level > 0) message1 (omessage); else if (!noninteractive) message1 ("Garbage collecting...done"); -- 2.30.2